home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
irc_i_dodatki
/
kuang
/
kuangeleven28.lha
/
Rexx
/
CTCP
/
Where.amirx
< prev
Wrap
Text File
|
1997-02-25
|
1KB
|
36 lines
/* $VER: Where.AMIRX 1.0 (2.18.97) K¹¹ Plugin 2.5: Where are u from !!
Comments: bosman@erols.com IRC: Bossman^
Put this in Amirc/rexx/Ctcp edit K11 pluggins Add Where and Where.amirx
and that's it...
Type /ctcp {nick} Where in Amirc
Edit the below line to make it sound right for u it already includes
your Nick's so you just need to finish the sentences of where you from.
Try to include a major city so people can get a ideal of where You're
from . Example Bossman's about 30 miles south of Washington DC, USA
only change inside of the ' ' */
wfrom = 'about 30 miles south of Washington DC, USA'
/* edit the above line and nothing below*/
squote=d2c('39')
options results
parse arg ':'prefix' 'type' 'channel' :'text
parse var prefix nick'!'useraddr
div='01'x
parse upper var text (div) pref (div)
if pref~='WHERE' then exit
"GETMYNICK"
mynick=result
Notice(nick, mynick squote's' wfrom)
end
exit
notice:
if arg(1)~=''&arg(2)~='' then 'RAW NOTICE 'arg(1)' :'arg(2)
return(0)